const github.com/klauspost/compress/zstd.dictMaxLength
5 uses
github.com/klauspost/compress/zstd (current package)
decoder_options.go#L133: if bits.UintSize > 32 && uint(len(content)) > dictMaxLength {
dict.go#L27: const dictMaxLength = 1 << 31
dict.go#L213: if int64(len(hist)) > dictMaxLength {
dict.go#L214: return nil, fmt.Errorf("dictionary of size %d > %d", len(hist), int64(dictMaxLength))
encoder_options.go#L363: if bits.UintSize > 32 && uint(len(content)) > dictMaxLength {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |